Character FontStyle

Gets or sets the font style used for the character.

public FontStyle FontStyle {get;Set}

 

Return value

FontStyle Font style used

 

Example

Copy
TextShape text = new TextShape();

Character character = new Character();

character.CharacterUnicode = 'A';
character.Height = 5;
character.FontName = "Arial";

character.FontStyle = FontStyle.Regular;

text.Characters.Add(character);